home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1996 #14 / Monster Media No. 14 (April 1996) (Monster Media, Inc.).ISO / prog_d / cpltest.zip / README.TXT < prev   
Text File  |  1996-01-10  |  2KB  |  41 lines

  1. Demo Installation:
  2.     Copy the CPL file included to your Windows System Directory
  3.     (EX:  C:\Windows\system or C:\WIN95\system ... whatever)
  4.     And run CONTROL PANEL AFTER DOING THIS.
  5.  
  6. Essence of a CPL Applet:
  7.     A CPL Applet is nothing more than a DLL Without the TRUE
  8.     DLLEntry whatnot function. Is has the CPLApplet function
  9.     instead. The CPLApplet function is used as the entry
  10.     point into the DLL, reporting and receiving information
  11.     to and from the Control Panel. the CPL extension just means
  12.     that Control Panel will automatically pick it up when 
  13.     it opens. I get the best results by putting it into my
  14.     Windows System directory. If you want to keep the
  15.     Extension DLL, then you must add a line to your
  16.     CONTROL.INI file instructing it to load the DLL
  17.     into the control panel: 
  18.  
  19.     EX:
  20.         [MMCPL]
  21.         ODBC=C:\WIN95\SYSTEM\ODBCINST.DLL
  22.         DELPHI=C:\win95\cpltest.dll
  23.  
  24.  
  25. CREDITS:
  26.          I had been strugling with converting my old C Control Panel
  27.          Applications into DELPHI (No particular reason.. Just could it be
  28.          done?) As a C-man I found DELPHI's documentation (rather lack
  29.          thereof) not very helpful... so I turned to the man with the answers,
  30.          Kurt Barthelmess of Team B.  He pointed out my errors and boy did
  31.          I feel 100% stupid. I've done PASCAL for 4 years and I felt like
  32.          a 3 month cadet after Kurt pointed my obvious errors out to me.
  33.          Looking past my ignorance, Kurt pointed me in the right direction.
  34.          So, if you like this unit, remember to thank Kurt "The Man" Barthelmess.
  35.  
  36.          Also, in certain parts of this code I para-quote the CPL.INT
  37.          file found in the DELPHI/DOC directory as pertaining to the
  38.          CPL_xxx messages.
  39.  
  40.  
  41. -Dave Rigsby